#include <sol.hpp>
|
static int | push (lua_State *L, const wchar_t(&str)[N]) |
|
static int | push (lua_State *L, const wchar_t(&str)[N], std::size_t sz) |
|
§ push() [1/2]
template<size_t N>
static int sol::stack::pusher< wchar_t[N]>::push |
( |
lua_State * |
L, |
|
|
const wchar_t(&) |
str[N] |
|
) |
| |
|
inlinestatic |
11185 return push(L, str, std::char_traits<wchar_t>::length(str));
static int push(lua_State *L, const wchar_t(&str)[N])
Definition: sol.hpp:11184
§ push() [2/2]
template<size_t N>
static int sol::stack::pusher< wchar_t[N]>::push |
( |
lua_State * |
L, |
|
|
const wchar_t(&) |
str[N], |
|
|
std::size_t |
sz |
|
) |
| |
|
inlinestatic |
11189 return stack::push<const wchar_t*>(L, str, str + sz);
The documentation for this struct was generated from the following file: